The following install scripts are going to be needed in the following lectures:

Install AWS Client:
=========================================================
sudo apt-get install python2.7
curl -O https://bootstrap.pypa.io/get-pip.py
sudo python2.7 get-pip.py
sudo pip install awscli

Test it:
aws help

Install Kubectl
=========================================================
curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl
chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl

Test:
kubectl version --short --client

Installing Helm
=========================================================
curl -LO https://git.io/get_helm.sh
chmod 700 get_helm.sh
./get_helm.sh

Test:
helm version --short --client